home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / TUTOROLE.PAK / MAKEFILE next >
Text File  |  1997-05-06  |  930b  |  23 lines

  1. #-----------------------------------------------------------------------------
  2. # ObjectWindows - (C) Copyright 1994 by Borland International
  3. #   Non-Doc/View Ole tutorial application -- makefile.
  4. #
  5. # The following models may be built by defines on command line or environment:
  6. #   16-bit OWL DLL model: make          (MODEL=d, SYSTEM=WIN16 are defaults)
  7. #   16-bit large model:   make MODEL=l  (SYSTEM=WIN16 is the default)
  8. # Additionally set DEBUG=1 to build with debug information
  9. # Specify TARGET=owlole?.exe to build only one target step, rather than all
  10. #
  11. #-----------------------------------------------------------------------------
  12.  
  13. MODELS =ldf
  14. EXERES = sampexe
  15. EXEALL = owlole1.exe owlole2.exe owlole3.exe
  16. EXEMAKE= $(owlole1) $(owlole2) $(owlole3)
  17.  
  18. owlole1 = $(EXERULE:sampexe=owlole1)
  19. owlole2 = $(EXERULE:sampexe=owlole2)
  20. owlole3 = $(EXERULE:sampexe=owlole3)
  21.  
  22. !include $(BCEXAMPLEDIR)\owlocfmk.gen
  23.